home *** CD-ROM | disk | FTP | other *** search
/ Digital Pose Collection / Digital Pose Collection.iso / mac / POSE / DATA / MAIN.DXR / 00049.ls < prev    next >
Encoding:
Text File  |  1996-06-18  |  326 b   |  21 lines

  1. on mouseDown
  2.   puppetSound("click")
  3. end
  4.  
  5. on mouseUp
  6.   global gfindflg, gbackframe
  7.   cursor(4)
  8.   if gfindflg then
  9.     set gfindflg to 0
  10.     set the visible of sprite 5 to 0
  11.     set the visible of sprite 6 to 0
  12.     cursor(0)
  13.     go(gbackframe)
  14.   else
  15.     updateStage()
  16.     clearsprite()
  17.     cursor(0)
  18.     play done
  19.   end if
  20. end
  21.